home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / logomain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.7 KB  |  58 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef LogoMainH
  3. #define LogoMainH
  4. //----------------------------------------------------------------------------
  5. #include <ComCtrls.hpp>
  6. #include <ExtCtrls.hpp>
  7. #include <Buttons.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Dialogs.hpp>
  10. #include <Menus.hpp>
  11. #include <Controls.hpp>
  12. #include <Forms.hpp>
  13. #include <Graphics.hpp>
  14. #include <Classes.hpp>
  15. #include <Windows.hpp>
  16. #include <System.hpp>
  17. //----------------------------------------------------------------------------
  18. class TLogoAppForm : public TForm
  19. {
  20. __published:
  21.     TMainMenu *LogoAppMenu;
  22.     TMenuItem *FileMenu;
  23.     TMenuItem *FileNewItem;
  24.     TMenuItem *FileOpenItem;
  25.     TMenuItem *FileSaveItem;
  26.     TMenuItem *FileSendItem;
  27.     TMenuItem *FileExitItem;
  28.     TOpenDialog *OpenDialog;
  29.     TSaveDialog *SaveDialog;
  30.     TMenuItem *Help1;
  31.     TMenuItem *AboutItem;
  32.     TPanel *SpeedPanel;
  33.     TSpeedButton *OpenBtn;
  34.     TSpeedButton *SaveBtn;
  35.     TSpeedButton *ExitBtn;
  36.     TStatusBar *StatusBar;
  37.     TRichEdit *RichEdit1;
  38.     TSpeedButton *SendBtn;
  39.     void __fastcall FormCreate(TObject *Sender);
  40.     void __fastcall FileExit(TObject *Sender);
  41.     void __fastcall FileNew(TObject *Sender);
  42.     void __fastcall FileOpen(TObject *Sender);
  43.     void __fastcall FileSave(TObject *Sender);
  44.     void __fastcall FileSaveAs(TObject *Sender);
  45.     void __fastcall FileSend(TObject *Sender);
  46.     void __fastcall About(TObject *Sender);
  47.     void __fastcall ShowHint(TObject *Sender);
  48.  
  49. private:
  50.     AnsiString FFileName;
  51. public:
  52.     virtual __fastcall TLogoAppForm(TComponent *Owner);
  53. };
  54. //----------------------------------------------------------------------------
  55. extern TLogoAppForm *LogoAppForm;
  56. //----------------------------------------------------------------------------
  57. #endif
  58.